home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-08-16 | 1.7 KB | 68 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: FWResFil.k
- // Release Version: $ ODF 1 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef FWRESFIL_K
- #define FWRESFIL_K
-
- //----------------------------------------------------------------------------------------
- // Predefined resource types
- //----------------------------------------------------------------------------------------
-
- #if defined FW_BUILD_MAC
-
- /* Mac specific */
- #define FW_kBlackWhiteIcon 'ICON'
- #define FW_kBlackWhiteCursor 'CURS'
-
- /* Common */
- #define FW_kBitmap 'BMAP'
- #define FW_kCursor 'crsr'
- #define FW_kIcon 'cicn'
- #define FW_kPicture 'PICT'
-
- #elif defined FW_BUILD_WIN
-
- /* Win specific */
- #define FW_kAccelerator 9
-
- /* Common */
- #define FW_kBitmap 2
- #define FW_kCursor 1
- #define FW_kIcon 3
- #define FW_kPicture 270
-
- #endif
-
- /* Formerly from FWRCDefi.h */
- #ifdef __ODFRC__
-
- /* these are the predefined types of resources */
- #define FW_kNOKIND (-1)
- #define FW_kACCELTABLE 1
- #define FW_kBITMAP 2
- #define FW_kICON 3
- #define FW_kCURSOR 4
- #define FW_kCODEPAGE 5
- #define FW_kMENU 9
- #define FW_kMSGTABLE 10
- #define FW_kSTRTABLE 11
- #define FW_kCUSTOMTYPE 12
- #define FW_kMULTISTRING 13
-
- /* these are the load and memory option values */
- #define FW_kPRELOAD 1
- #define FW_kLOADONCALL 0
- #define FW_kSTATIC 2
- #define FW_kRELOCATABLE 0
- #define FW_kPURGEABLE 4
-
- #endif
-
- #endif
-